All Questions
7 questions
6votes
3answers
724views
Rust: Command line menu in ASCII table
Specific areas in which I'd love to get feedback: Is it good to have the Command struct own the Strings (...
1vote
1answer
143views
Company database REPL program in Rust for Chapter 8 of The Book
Using a hash map and vectors, create a text interface to allow a user to add employee names to a department in a company. For example, “Add Sally to Engineering” or “Add Amir to Sales.” Then let the ...
3votes
3answers
674views
Join and map command line arguments in Rust
Is there a more natural way to do this in rust? I'm having a lot of difficulty trying to make this look clean. Type mismatches and borrowing have me stumped. What are some refactors that I could make? ...
3votes
0answers
119views
Console Snake Game
I am beginning to learn rust and I created this snake game for practice. I am looking for some feedback on my code. main.rs ...
8votes
1answer
198views
Ntree: a reimplementation of the tree utility
tree is described as "a recursive directory listing command that produces a depth indented listing of files" on the homepage for its Linux implementation. I don't ...
4votes
1answer
1kviews
Sieve of Eratosthenes Optimization in Rust
When I want to try a new language, I first try to write a fairly basic sieve of Eratosthenes project in said language. This is a very simple algorithm, with predictable results, and can even be ...
2votes
1answer
655views
Rust version of my C++ command-line tool
First program I've written in Rust (besides the demos in the tutorial site). I decided to start by converting my C++ command line tool to Rust. This is not necessarily a 1 to 1 conversion, but I've ...